home *** CD-ROM | disk | FTP | other *** search
/ Acorn RISC PD-CD 1 / Acorn RISC PD-CD 1.iso / raytracers / _pvray / pv / scenes / simple < prev    next >
Encoding:
Text File  |  1991-11-02  |  758 b   |  43 lines

  1. // Persistence of Vision Raytracer
  2. // Sample file
  3.  
  4. #include "<PVray$Dir>.dat.shapes"
  5. #include "<PVray$Dir>.dat.colors"
  6. #include "<PVray$Dir>.dat.textures"
  7.  
  8. view_point
  9.    location <0.0  20.0  -100.0>
  10.    direction <0.0 0.0  1.0>
  11.    up  <0.0  1.0  0.0>
  12.    right <1.0 0.0 0.0>
  13. end_view_point
  14.  
  15. object
  16.    plane <0.0 1.0 0.0> -10.0 end_plane
  17.    colour White
  18.    texture
  19.       colour White
  20.       ambient 0.2
  21.       diffuse 0.8
  22.    end_texture
  23. end_object
  24.  
  25. object
  26.    sphere <0.0  25.0  0.0>  40.0 end_sphere
  27.    texture
  28.       colour CRed
  29.    end_texture
  30. end_object
  31.  
  32. object
  33.    sphere <0.0  0.0  0.0>  2.0 end_sphere
  34.    translate <100.0  120.0  40.0>
  35.    texture
  36.       colour White
  37.       ambient 1.0
  38.       diffuse 0.0
  39.    end_texture
  40.    light_source
  41.    colour White
  42. end_object
  43.